'Declaration Public Event Changed As EventHandler(Of SourceChangeEventArgs(Of T))
public event EventHandler<SourceChangeEventArgs<T>> Changed
Event Data
The event handler receives an argument of type SourceChangeEventArgs<T> containing data related to this event. The following SourceChangeEventArgs<T> properties provide information specific to this event.
| Property | Description |
|---|---|
| ChangeType | Gets the type of change. |
| Item | Gets the object that is being changed. |
| Ordinal | Gets the ordinal position of the collection item that is being changed. |
See Also